2006-03-16 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkactiongroup.c (gtk_action_group_add_actions_full)
+ (gtk_action_group_add_toggle_actions_full)
+ (gtk_action_group_add_radio_actions_full): Check for a stock
+ icon, not a stock item, when deciding whether to use stock-id
+ or icon-name. (#334760, Jody Goldberg)
+
* gtk/gtkimage.c (gtk_image_clear): Update the size of the image,
by swapping the implementations of gtk_image_clear and
gtk_image_reset. (#334657)
2006-03-16 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkactiongroup.c (gtk_action_group_add_actions_full)
+ (gtk_action_group_add_toggle_actions_full)
+ (gtk_action_group_add_radio_actions_full): Check for a stock
+ icon, not a stock item, when deciding whether to use stock-id
+ or icon-name. (#334760, Jody Goldberg)
+
* gtk/gtkimage.c (gtk_image_clear): Update the size of the image,
by swapping the implementations of gtk_image_clear and
gtk_image_reset. (#334657)
if (entries[i].stock_id)
{
- GtkStockItem item;
-
- if (gtk_stock_lookup (entries[i].stock_id, &item))
+ if (gtk_icon_factory_lookup_default (entries[i].stock_id))
g_object_set (action, "stock-id", entries[i].stock_id, NULL);
else
g_object_set (action, "icon-name", entries[i].stock_id, NULL);
{
GtkStockItem item;
- if (gtk_stock_lookup (entries[i].stock_id, &item))
+ if (gtk_icon_factory_lookup_default (entries[i].stock_id))
g_object_set (action, "stock-id", entries[i].stock_id, NULL);
else
g_object_set (action, "icon-name", entries[i].stock_id, NULL);
{
GtkStockItem item;
- if (gtk_stock_lookup (entries[i].stock_id, &item))
+ if (gtk_icon_factory_lookup_default (entries[i].stock_id))
g_object_set (action, "stock-id", entries[i].stock_id, NULL);
else
g_object_set (action, "icon-name", entries[i].stock_id, NULL);